The worldwide progress in economy has not produced equivalent improvements in health status between different groups. Multiple nations now experience greater economic wealth yet people question if these resources lead to death rate reductions and expanded medical services.
This research examines the survival divide through measles vaccination coverage (MCV1), which serves as a vital indicator of child health together with public health system strength.
Understanding Measles and Vaccination
Measles is a highly contagious viral disease that primarily affects young children and can lead to severe health complications such as pneumonia, encephalitis, and even death.
Despite being preventable through vaccination, measles remains a major public health concern in many regions, especially where healthcare access is limited.
The measles vaccine (MCV1) is widely recognized as one of the most cost-effective health interventions, providing immunity and reducing mortality rates significantly.
Monitoring vaccination coverage not only reflects a nation’s healthcare system efficiency but also highlights broader issues of equity, access, and the ability to translate economic progress into tangible health outcomes.
Research Question and Objective
Core Question
Does Economic Growth Guarantee Better Health Outcomes?
Objectives
Analyze global patterns between GDP per capita and life expectancy.
To highlight disparities where economic wealth does not translate into improved health outcomes.
To explore the role of healthcare infrastructure for examaple hospital beds in supporting survival gains.
To identify actionable recommendations for bridging the survival divide
Analysis and Interpretation
Economic development provides resources, but it does not guarantee that these resources are effectively used to improve public health. Countries with robust healthcare systems — including widespread access to hospitals and clinics — are far better positioned to ensure high measles immunization rates, regardless of their income classification.
Global Map of Measles Vaccination Coverage (MCV1) Over Time
The visual presentation below analyzes UNICEF statistics explores the percentage of surviving infants who recieved the first dose of the Measles- containing vaccine (MCV1), a crucial step in preventing deadly outbreaks. The eavaluation of survival patterns across periods and country reveals how global child health shape both strong outcomes and unequal distribution of results.
This animated choropleth map visualizes the global progression of measles vaccination coverage (MCV1) over different years. Each frame represents a snapshot of MCV1 vaccination rates across countries for a specific year, providing a dynamic overview of how immunization efforts have evolved globally.
Higher vaccination percentages (depicted in darker shades of red) indicate stronger protection against measles outbreaks, a critical marker of public health system performance. This visualization highlights regional trends, identifies areas with persistent low coverage, and underscores the progress made toward universal immunization goals.
Connection between Infant Survival Rate and GDP
The connection shows why strong national economies improve healthcare services. Economic success helps people get better healthcare treatments including vaccines that lead to better child health results. Strong Public health systems combined with good economic conditions explain the top-performing nations because they provide good access to healthcare and implement effective vaccines.
Code
import pandas as pdimport plotly.express as pxdf_survival = pd.read_csv('unicef_indicator_1.csv')df_gdp = pd.read_csv('unicef_metadata.csv')df_survival = df_survival[df_survival['indicator'].str.contains("measles", case=False, na=False)]merged = pd.merge( df_survival, df_gdp[['country', 'GDP per capita (constant 2015 US$)']], on='country', how='inner').rename(columns={'GDP per capita (constant 2015 US$)': 'gdp_per_capita'})merged = merged.dropna(subset=['obs_value', 'gdp_per_capita'])fig = px.scatter( merged, x='obs_value', y='gdp_per_capita', color='country', hover_name='country', title='Infant Survival Rate vs. GDP per Capita', labels={'obs_value': 'Infant Survival Rate (%)', 'gdp_per_capita': 'GDP per Capita (USD)'}, template='plotly_white')fig.update_layout( height=400, font=dict(family="Arial", size=5),)from IPython.display import HTMLHTML(fig.to_html(include_plotlyjs='cdn'))